home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / zm16src.lzh / MAKEFILE.ALC < prev    next >
Text File  |  1988-05-14  |  773b  |  35 lines

  1. #
  2. # Makefile for Alcyon C (version 4.14 required)
  3. #    for use with PD MAKE distributed by us.
  4. #
  5. #    Fix paths below for your set up
  6. #        c:\include\    Path to include files
  7. #        c:\lib\        Path to C library files
  8. #
  9. #    Edit config.h
  10. #    
  11. #    Please use a decent version of gemstart.s that gives some
  12. #    breathing room to malloc()
  13. #
  14. #    Jwahar Bammi
  15.  
  16. SRC = common.c rz.c sz.c transfer.c util.c main.c tyme.c zm.c fileio.c dummy.c \
  17. phone.c
  18.  
  19. OBJ = common.o rz.o sz.o transfer.o util.o main.o tyme.o zm.o fileio.o dummy.o \
  20. phone.o
  21.  
  22. INCLUDE = c:\include
  23. LIB = c:\lib
  24. CPFLAGS = -i $(INCLUDE)\ -DDECL
  25. LINKER = c:\bin\aln.prg
  26.  
  27. zmdm.prg : $(OBJ)
  28.     $(LINKER) -o zmdm.prg -c lnk
  29.  
  30. $(OBJ) : common.h zmdm.h decl.h config.h
  31. transfer.o : expandar.c
  32.  
  33. clean:
  34.     $(RM) *.o *.68k
  35.